home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / sgml / unix / sgmlh / lextoke.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-07-03  |  693 b   |  12 lines

  1. /******************************************************************************/
  2. /* LEXTOKE.H: Symbols for tokenization lexical classes.
  3. */
  4. #define INV     0   /* Invalid Chars      Not allowed in an SGML name. */
  5. #define REC     1   /* Record Boundary    RS and RE. */
  6. #define SEP     2   /* Separator          Space and TAB. */
  7. #define NMC     3   /* NAMECHAR  . _      Period, underscore (plus NMS, NUM). */
  8. #define NMS     4   /* NAMESTRT           Lower and uppercase letters */
  9. #define NU      5   /* NUMERAL            Numerals */
  10. #define EOB     6   /* NONCHAR   28       End disk buffer. */
  11. /******************************************************************************/
  12.